home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / AddressCode.java next >
Text File  |  1998-08-21  |  650b  |  35 lines

  1. package symantec.itools.awt.util.edit;
  2.  
  3.  
  4. import symantec.itools.awt.FormattedTextField;
  5.  
  6.  
  7. /**
  8.  * An abstract subclass of FormattedTextField for use as various post office codes.
  9.  *
  10.  *
  11.  * @see symantec.itools.awt.edit.ZipCode
  12.  * @see symantec.itools.awt.edit.PostalCode
  13.  * @see symantec.itools.awt.edit.LongZipCode
  14.  *
  15.  * @version 1.0, Nov 26, 1996
  16.  *
  17.  * @author    Symantec
  18.  *
  19.  */
  20.  
  21.  
  22. public abstract class AddressCode
  23.     extends FormattedTextField
  24. {
  25.     /**
  26.      * Create new formatted field.
  27.      *
  28.      * @param i number of columns in the field
  29.      */
  30.     protected AddressCode(int i)
  31.     {
  32.         super(i);
  33.     }
  34. }
  35.